home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / scfd.c < prev    next >
C/C++ Source or Header  |  1997-05-17  |  22KB  |  782 lines

  1. /* Copyright (C) 1992, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* scfd.c */
  20. /* CCITTFax decoding filter */
  21. #include "stdio_.h"    /* includes std.h */
  22. #include "memory_.h"
  23. #include "gdebug.h"
  24. #include "strimpl.h"
  25. #include "scf.h"
  26. #include "scfx.h"
  27.  
  28. /* ------ CCITTFaxDecode ------ */
  29.  
  30. private_st_CFD_state();
  31.  
  32. #define ss ((stream_CFD_state *)st)
  33.  
  34. /* Set default parameter values. */
  35. private void
  36. s_CFD_set_defaults(register stream_state *st)
  37. {    s_CFD_set_defaults_inline(ss);
  38. }
  39.  
  40. /* Initialize CCITTFaxDecode filter */
  41. private int
  42. s_CFD_init(stream_state *st)
  43. {    int raster = ss->raster =
  44.       round_up((ss->Columns + 7) >> 3, ss->DecodedByteAlign);
  45.     byte white = (ss->BlackIs1 ? 0 : 0xff);
  46.     s_hcd_init_inline(ss);
  47.     /* Because skip_white_pixels can look as many as 4 bytes ahead, */
  48.     /* we need to allow 4 extra bytes at the end of the row buffers. */
  49.     ss->lbuf = gs_alloc_bytes(st->memory, raster + 4, "CFD lbuf");
  50.     ss->lprev = 0;
  51.     if ( ss->lbuf == 0 )
  52.       return ERRC;        /****** WRONG ******/
  53.     if ( ss->K != 0 )
  54.       { ss->lprev = gs_alloc_bytes(st->memory, raster + 4, "CFD lprev");
  55.         if ( ss->lprev == 0 )
  56.           return ERRC;        /****** WRONG ******/
  57.         /* Clear the initial reference line for 2-D encoding. */
  58.         memset(ss->lbuf, white, raster);
  59.         /* Ensure that the scan of the reference line will stop. */
  60.         ss->lbuf[raster] = 0xa0;
  61.       }
  62.     ss->k_left = min(ss->K, 0);
  63.     ss->run_color = 0;
  64.     ss->damaged_rows = 0;
  65.     ss->skipping_damage = false;
  66.     ss->cbit = 0;
  67.     ss->uncomp_run = 0;
  68.     ss->rows_left = (ss->Rows <= 0 || ss->EndOfBlock ? -1 : ss->Rows + 1);
  69.     ss->rpos = ss->wpos = raster - 1;
  70.     ss->eol_count = 0;
  71.     ss->invert = white;
  72.     return 0;
  73. }
  74.  
  75. /* Release the filter. */
  76. private void
  77. s_CFD_release(stream_state *st)
  78. {    gs_free_object(st->memory, ss->lprev, "CFD lprev(close)");
  79.     gs_free_object(st->memory, ss->lbuf, "CFD lbuf(close)");
  80. }
  81.  
  82. /* Declare the variables that hold the state. */
  83. #define cfd_declare_state\
  84.     hcd_declare_state;\
  85.     register byte *q;\
  86.     int qbit
  87. /* Load the state from the stream. */
  88. #define cfd_load_state()\
  89.     hcd_load_state(),\
  90.     q = ss->lbuf + ss->wpos, qbit = ss->cbit
  91. /* Store the state back in the stream. */
  92. #define cfd_store_state()\
  93.     hcd_store_state(),\
  94.     ss->wpos = q - ss->lbuf, ss->cbit = qbit
  95.  
  96. /* Macros to get blocks of bits from the input stream. */
  97. /* Invariants: 0 <= bits_left <= bits_size; */
  98. /* bits [bits_left-1..0] contain valid data. */
  99.  
  100. #define avail_bits(n) hcd_bits_available(n)
  101. #define ensure_bits(n, outl) hcd_ensure_bits(n, outl)
  102. #define peek_bits(n) hcd_peek_bits(n)
  103. #define peek_var_bits(n) hcd_peek_var_bits(n)
  104. #define skip_bits(n) hcd_skip_bits(n)
  105.  
  106. /* Get a run from the stream. */
  107. #define get_run(decode, initial_bits, runlen, str, outl)\
  108. {    const cfd_node *np;\
  109.     int clen;\
  110.     ensure_bits(initial_bits, outl);\
  111.     np = &decode[peek_bits(initial_bits)];\
  112.     if ( (clen = np->code_length) > initial_bits )\
  113.     {    do_debug(uint init_bits = peek_bits(initial_bits));\
  114.         if ( !avail_bits(clen) ) goto outl;\
  115.         clen -= initial_bits;\
  116.         skip_bits(initial_bits);\
  117.         ensure_bits(clen, outl);        /* can't goto outl */\
  118.         np = &decode[np->run_length + peek_var_bits(clen)];\
  119.         if_debug4('W', "%s xcode=0x%x,%d rlen=%d\n", str,\
  120.               (init_bits << np->code_length) +\
  121.                   peek_var_bits(np->code_length),\
  122.               initial_bits + np->code_length,\
  123.               np->run_length);\
  124.         skip_bits(np->code_length);\
  125.     }\
  126.     else\
  127.     {    if_debug4('W', "%s code=0x%x,%d rlen=%d\n", str,\
  128.               peek_var_bits(clen), clen, np->run_length);\
  129.         skip_bits(clen);\
  130.     }\
  131.     runlen = np->run_length;\
  132. }
  133.  
  134. /* Skip data bits for a white run. */
  135. /* rlen is either less than 64, or a multiple of 64. */
  136. #define skip_data(rlen, makeup_label)\
  137.     if ( (qbit -= rlen) < 0 )\
  138.     {    q -= qbit >> 3, qbit &= 7;\
  139.         if ( rlen >= 64 ) goto makeup_label;\
  140.     }
  141.  
  142. /* Invert data bits for a black run. */
  143. /* If rlen >= 64, execute makeup_action: this is to handle */
  144. /* makeup codes efficiently, since these are always a multiple of 64. */
  145. #define invert_data(rlen, black_byte, makeup_action, d)\
  146.     if ( rlen > qbit )\
  147.     {    *q++ ^= (1 << qbit) - 1;\
  148.         rlen -= qbit;\
  149.         switch ( rlen >> 3 )\
  150.         {\
  151.         case 7:        /* original rlen possibly >= 64 */\
  152.             if ( rlen + qbit >= 64 ) goto d;\
  153.             *q++ = black_byte;\
  154.         case 6: *q++ = black_byte;\
  155.         case 5: *q++ = black_byte;\
  156.         case 4: *q++ = black_byte;\
  157.         case 3: *q++ = black_byte;\
  158.         case 2: *q++ = black_byte;\
  159.         case 1: *q = black_byte;\
  160.             rlen &= 7;\
  161.             if ( !rlen ) { qbit = 0; break; }\
  162.             q++;\
  163.         case 0:            /* know rlen != 0 */\
  164.             qbit = 8 - rlen;\
  165.             *q ^= 0xff << qbit;\
  166.             break;\
  167.         default:    /* original rlen >= 64 */\
  168. d:            memset(q, black_byte, rlen >> 3);\
  169.             q += rlen >> 3;\
  170.             rlen &= 7;\
  171.             if ( !rlen ) qbit = 0, q--;\
  172.             else qbit = 8 - rlen, *q ^= 0xff << qbit;\
  173.             makeup_action;\
  174.         }\
  175.     }\
  176.     else\
  177.         qbit -= rlen,\
  178.         *q ^= ((1 << rlen) - 1) << qbit
  179.  
  180. /* Buffer refill for CCITTFaxDecode filter */
  181. private int cf_decode_eol(P2(stream_CFD_state *, stream_cursor_read *));
  182. private int cf_decode_1d(P2(stream_CFD_state *, stream_cursor_read *));
  183. private int cf_decode_2d(P2(stream_CFD_state *, stream_cursor_read *));
  184. private int cf_decode_uncompressed(P2(stream_CFD_state *, stream_cursor_read *));
  185. private int
  186. s_CFD_process(stream_state *st, stream_cursor_read *pr,
  187.   stream_cursor_write *pw, bool last)
  188. {    int wstop = ss->raster - 1;
  189.     int eol_count = ss->eol_count;
  190.     int k_left = ss->k_left;
  191.     int rows_left = ss->rows_left;
  192.     int status = 0;
  193. #ifdef DEBUG
  194.     const byte *rstart = pr->ptr;
  195.     const byte *wstart = pw->ptr;
  196. #endif
  197.  
  198. top:
  199. #ifdef DEBUG
  200.     { hcd_declare_state;
  201.       hcd_load_state();
  202.       if_debug8('w', "\
  203. [w]CFD_process top: eol_count=%d, k_left=%d, rows_left=%d\n\
  204.     bits=0x%lx, bits_left=%d, read %u, wrote %u%s\n",
  205.             eol_count, k_left, rows_left,
  206.             (ulong)bits, bits_left,
  207.             (uint)(p - rstart), (uint)(pw->ptr - wstart),
  208.             (ss->skipping_damage ? ", skipping damage" : ""));
  209.     }
  210. #endif
  211.     if ( ss->skipping_damage )
  212.       {    /* Skip until we reach an EOL. */
  213.         hcd_declare_state;
  214.         int skip;
  215.         status = 0;
  216.         do
  217.           { switch ( (skip = cf_decode_eol(ss, pr)) )
  218.               {
  219.               default:        /* not EOL */
  220.             hcd_load_state();
  221.             skip_bits(-skip);
  222.             hcd_store_state();
  223.             continue;
  224.               case 0:        /* need more input */
  225.             goto out;
  226.               case 1:        /* EOL */
  227.             { /* Back up over the EOL. */
  228.               hcd_load_state();
  229.               bits_left += run_eol_code_length;
  230.               hcd_store_state();
  231.             }
  232.             ss->skipping_damage = false;
  233.               }
  234.           }
  235.         while ( ss->skipping_damage );
  236.         ss->damaged_rows++;
  237.       }
  238.     /*
  239.      * Check for a completed input scan line.  This isn't quite as
  240.      * simple as it seems, because we could have run out of input data
  241.      * between a makeup code and a 0-length termination code, or in a
  242.      * 2-D line before a final horizontal code with a 0-length second
  243.      * run.  There's probably a way to think about this situation that
  244.      * doesn't require a special check, but I haven't found it yet.
  245.      */
  246.     if ( ss->wpos == wstop && ss->cbit <= (-ss->Columns & 7) &&
  247.          (k_left == 0 ? !(ss->run_color & ~1) : ss->run_color == 0)
  248.        )
  249.     {    /* Check for completed data to be copied to the client. */
  250.         /* (We could avoid the extra copy step for 1-D, but */
  251.         /* it's simpler not to, and it doesn't cost much.) */
  252.         if ( ss->rpos < ss->wpos )
  253.         {    stream_cursor_read cr;
  254.             cr.ptr = ss->lbuf + ss->rpos;
  255.             cr.limit = ss->lbuf + ss->wpos;
  256.             status = stream_move(&cr, pw);
  257.             ss->rpos = cr.ptr - ss->lbuf;
  258.             if ( status )
  259.                 goto out;
  260.         }
  261.         if ( rows_left > 0 && --rows_left == 0 )
  262.         {    status = EOFC;
  263.             goto out;
  264.         }
  265.         if ( ss->K != 0 )
  266.         {    byte *prev_bits = ss->lprev;
  267.             ss->lprev = ss->lbuf;
  268.             ss->lbuf = prev_bits;
  269.             if ( ss->K > 0 )
  270.               k_left = (k_left == 0 ? ss->K : k_left) - 1;
  271.         }
  272.         ss->rpos = ss->wpos = -1;
  273.         ss->eol_count = eol_count = 0;
  274.         ss->cbit = 0;
  275.         ss->invert = (ss->BlackIs1 ? 0 : 0xff);
  276.         memset(ss->lbuf, ss->invert, wstop + 1);
  277.         ss->run_color = 0;
  278.         /*
  279.          * If EndOfLine is true, we want to include the byte padding
  280.          * in the string of initial zeros in the EOL.  If EndOfLine
  281.          * is false, we aren't sure what we should do....
  282.          */
  283.         if ( ss->EncodedByteAlign & !ss->EndOfLine )
  284.           ss->bits_left &= ~7;
  285.     }
  286.     /* If we're between scan lines, scan for EOLs. */
  287.     if ( ss->wpos < 0 )
  288.     {    while ( (status = cf_decode_eol(ss, pr)) > 0 )
  289.         {    if_debug0('w', "[w]EOL\n");
  290.             /* If we are in a Group 3 mixed regime, */
  291.             /* check the next bit for 1- vs. 2-D. */
  292.             if ( ss->K > 0 )
  293.             {    hcd_declare_state;
  294.                 hcd_load_state();
  295.                 ensure_bits(1, out);    /* can't fail */
  296.                 k_left = (peek_bits(1) ? 0 : 1);
  297.                 skip_bits(1);
  298.                 hcd_store_state();
  299.             }
  300.             ++eol_count;
  301.             if ( ss->EndOfBlock )
  302.             {    /* Check for end-of-data sequence. */
  303.                 if (eol_count == (ss->K < 0 ? 2 : 6))
  304.                 {    status = EOFC;
  305.                     goto out;
  306.                 }
  307.             }
  308.             else
  309.                 break;        /* >1 EOL is an error */
  310.         }
  311.         if ( status == 0 )    /* input empty while scanning EOLs */
  312.             goto out;
  313.         switch ( eol_count )
  314.         {
  315.         case 0:
  316.             if ( ss->EndOfLine )
  317.             {    /* EOL is required, but none is present. */
  318.                 status = ERRC;
  319.                 goto check;
  320.             }
  321.         case 1:
  322.             break;
  323.         default:
  324.             status = ERRC;
  325.             goto check;
  326.         }
  327.     }
  328.     /* Now decode actual data. */
  329.     if ( k_left < 0 )
  330.     {    if_debug0('w', "[w2]new row\n");
  331.         status = cf_decode_2d(ss, pr);
  332.     }
  333.     else if ( k_left == 0 )
  334.     {    if_debug0('w', "[w1]new row\n");
  335.         status = cf_decode_1d(ss, pr);
  336.     }
  337.     else
  338.     {    if_debug1('w', "[w1]new 2-D row, %d left\n", k_left);
  339.         status = cf_decode_2d(ss, pr);
  340.     }
  341.     if_debug3('w', "[w]CFD status = %d, wpos = %d, cbit = %d\n",
  342.           status, ss->wpos, ss->cbit);
  343. check:    switch ( status )
  344.       {
  345.       case 1:            /* output full */
  346.         goto top;
  347.       case ERRC:
  348.         /* Check for special handling of damaged rows. */
  349.         if ( ss->damaged_rows >= ss->DamagedRowsBeforeError ||
  350.              !(ss->EndOfLine && ss->K >= 0)
  351.            )
  352.           break;
  353.         /* Substitute undamaged data if appropriate. */
  354.         /****** NOT IMPLEMENTED YET ******/
  355.         { ss->wpos = wstop;
  356.           ss->cbit = -ss->Columns & 7;
  357.           ss->run_color = 0;
  358.         }
  359.         ss->skipping_damage = true;
  360.         goto top;
  361.       default:
  362.         ss->damaged_rows = 0;    /* finished a good row */
  363.       }
  364. out:    ss->k_left = k_left;
  365.     ss->rows_left = rows_left;
  366.     ss->eol_count = eol_count;
  367.     return status;
  368. }
  369.  
  370. #undef ss
  371.  
  372. /*
  373.  * Decode a leading EOL, if any.
  374.  * If an EOL is present, skip over it and return 1;
  375.  * if no EOL is present, read no input and return -N, where N is the
  376.  * number of initial bits that can be skipped in the search for an EOL;
  377.  * if more input is needed, return 0.
  378.  * Note that if we detected an EOL, we know that we can back up over it;
  379.  * if we detected an N-bit non-EOL, we know that at least N bits of data
  380.  * are available in the buffer.
  381.  */
  382. private int
  383. cf_decode_eol(stream_CFD_state *ss, stream_cursor_read *pr)
  384. {    hcd_declare_state;
  385.     int zeros;
  386.     int look_ahead;
  387.     hcd_load_state();
  388.     for ( zeros = 0; zeros < run_eol_code_length - 1; zeros++ )
  389.     {    ensure_bits(1, out);
  390.         if ( peek_bits(1) )
  391.           return -(zeros + 1);
  392.         skip_bits(1);
  393.     }
  394.     /* We definitely have an EOL.  Skip further zero bits. */
  395.     look_ahead = (ss->K > 0 ? 2 : 1);
  396.     for ( ; ; )
  397.     {    ensure_bits(look_ahead, back);
  398.         if ( peek_bits(1) )
  399.           break;
  400.         skip_bits(1);
  401.     }
  402.     skip_bits(1);
  403.     hcd_store_state();
  404.     return 1;
  405. back:    /*
  406.      * We ran out of data while skipping zeros.
  407.      * We know we are at a byte boundary, and have just skipped
  408.      * at least run_eol_code_length - 1 zeros.  However,
  409.      * bits_left may be 1 if look_ahead == 2.
  410.      */
  411.     bits &= (1 << bits_left) - 1;
  412.     bits_left += run_eol_code_length - 1;
  413.     hcd_store_state();
  414. out:    return 0;
  415. }
  416.  
  417. /* Decode a 1-D scan line. */
  418. private int
  419. cf_decode_1d(stream_CFD_state *ss, stream_cursor_read *pr)
  420. {    cfd_declare_state;
  421.     byte black_byte = (ss->BlackIs1 ? 0xff : 0);
  422.     int end_bit = -ss->Columns & 7;
  423.     byte *stop = ss->lbuf - 1 + ss->raster;
  424.     int run_color = ss->run_color;
  425.     int status;
  426.     int bcnt;
  427.  
  428.     cfd_load_state();
  429.     if_debug1('w', "[w1]entry run_color = %d\n", ss->run_color);
  430.     if ( ss->run_color > 0 )
  431.       goto db;
  432.     else
  433.       goto dw;
  434. #define q_at_stop() (q >= stop && (qbit <= end_bit || q > stop))
  435. top:    run_color = 0;
  436.     if ( q_at_stop() )
  437.       goto done;
  438. dw:    /* Decode a white run. */
  439.     get_run(cf_white_decode, cfd_white_initial_bits, bcnt, "[w1]white", out0);
  440.     if ( bcnt < 0 )            /* exceptional situation */
  441.     {    switch ( bcnt )
  442.         {
  443.         case run_uncompressed:    /* Uncompressed data. */
  444.             cfd_store_state();
  445.             bcnt = cf_decode_uncompressed(ss, pr);
  446.             if ( bcnt < 0 )
  447.               return bcnt;
  448.             cfd_load_state();
  449.             if ( bcnt ) goto db;
  450.             else goto dw;
  451.         /*case run_error:*/
  452.         /*case run_zeros:*/    /* Premature end-of-line. */
  453.         default:
  454.             status = ERRC;
  455.             goto out;
  456.         }
  457.     }
  458.     skip_data(bcnt, dwx);
  459.     if ( q_at_stop() )
  460.       {    run_color = 0;        /* not inside a run */
  461.         goto done;
  462.       }
  463.     run_color = 1;
  464. db:    /* Decode a black run. */
  465.     get_run(cf_black_decode, cfd_black_initial_bits, bcnt, "[w1]black", out1);
  466.     if ( bcnt < 0 )
  467.     {    /* All exceptional codes are invalid here. */
  468.         /****** WRONG, uncompressed IS ALLOWED ******/
  469.         status = ERRC;
  470.         goto out;
  471.     }
  472.     /* Invert bits designated by black run. */
  473.     invert_data(bcnt, black_byte, goto dbx, idb);
  474.     goto top;
  475. dwx:    /* If we run out of data after a makeup code, */
  476.     /* note that we are still processing a white run. */
  477.     run_color = -1;
  478.     goto dw;
  479. dbx:    /* If we run out of data after a makeup code, */
  480.     /* note that we are still processing a black run. */
  481.     run_color = 2;
  482.     goto db;
  483. done:    if ( q > stop || qbit < end_bit )
  484.       status = ERRC;
  485.     else
  486.       status = 1;
  487. out:    cfd_store_state();
  488.     ss->run_color = run_color;
  489.     if_debug1('w', "[w1]exit run_color = %d\n", run_color);
  490.     return status;
  491. out0:    /* We already set run_color to 0 or -1. */
  492.     status = 0;
  493.     goto out;
  494. out1:    /* We already set run_color to 1 or 2. */
  495.     status = 0;
  496.     goto out;
  497. }
  498.  
  499. /* Decode a 2-D scan line. */
  500. private int
  501. cf_decode_2d(stream_CFD_state *ss, stream_cursor_read *pr)
  502. {    cfd_declare_state;
  503.     byte invert_white = (ss->BlackIs1 ? 0 : 0xff);
  504.     byte black_byte = ~invert_white;
  505.     byte invert = ss->invert;
  506.     int end_count = -ss->Columns & 7;
  507.     uint raster = ss->raster;
  508.     byte *q0 = ss->lbuf;
  509.     byte *prev_q01 = ss->lprev + 1;
  510.     byte *endptr = q0 - 1 + raster;
  511.     int init_count = raster << 3;
  512.     register int count;
  513.     int rlen;
  514.     int status;
  515.     cfd_load_state();
  516.     count = ((endptr - q) << 3) + qbit;
  517.     endptr[1] = 0xa0;    /* a byte with some 0s and some 1s, */
  518.                 /* to ensure run scan will stop */
  519.     if_debug1('W', "[w2]raster=%d\n", raster);
  520.     switch ( ss->run_color )
  521.     {
  522.     case -2: ss->run_color = 0; goto hww;
  523.     case -1: ss->run_color = 0; goto hbw;
  524.     case 1: ss->run_color = 0; goto hwb;
  525.     case 2: ss->run_color = 0; goto hbb;
  526.     /*case 0:*/
  527.     }
  528. top:    if ( count <= end_count )
  529.     {    status = (count < end_count ? ERRC : 1);
  530.         goto out;
  531.     }
  532.     /* If invert == invert_white, white and black have their */
  533.     /* correct meanings; if invert == ~invert_white, */
  534.     /* black and white are interchanged. */
  535.     if_debug1('W', "[w2]%4d:\n", count);
  536. #ifdef DEBUG
  537.     /* Check the invariant between q, qbit, and count. */
  538.     {    int pcount = (endptr - q) * 8 + qbit;
  539.         if ( pcount != count )
  540.             dprintf2("[w2]Error: count=%d pcount=%d\n",
  541.                  count, pcount);
  542.     }
  543. #endif
  544.     /* We could just use get_run here, but we can do better: */
  545.     ensure_bits(3, out0);
  546. #define vertical_0 (countof(cf2_run_vertical) / 2)
  547.     switch( peek_bits(3) )
  548.     {
  549.     default/*4..7*/:            /* vertical(0) */
  550.         skip_bits(1);
  551.         rlen = vertical_0;
  552.         break;
  553.     case 2:                    /* vertical(+1) */
  554.         skip_bits(3);
  555.         rlen = vertical_0 + 1;
  556.         break;
  557.     case 3:                    /* vertical(-1) */
  558.         skip_bits(3);
  559.         rlen = vertical_0 - 1;
  560.         break;
  561.     case 1:                    /* horizontal */
  562.         skip_bits(3);
  563.         if ( invert == invert_white )
  564.           goto hww;
  565.         else
  566.           goto hbb;
  567.     case 0:                /* everything else */
  568.         get_run(cf_2d_decode, cfd_2d_initial_bits, rlen,
  569.             "[w2]", out0);
  570.         /* rlen may be run2_pass, run_uncompressed, or */
  571.         /* 0..countof(cf2_run_vertical)-1. */
  572.         if ( rlen < 0 )
  573.           switch ( rlen )
  574.         {
  575.         case run2_pass:
  576.             break;
  577.         case run_uncompressed:
  578.         {    int which;
  579.             cfd_store_state();
  580.             which = cf_decode_uncompressed(ss, pr);
  581.             if ( which < 0 )
  582.             {    status = which;
  583.                 goto out;
  584.             }
  585.             cfd_load_state();
  586.             /****** ADJUST count ******/
  587.             invert = (which ? ~invert_white : invert_white);
  588.         }    goto top;
  589.         default:    /* run_error, run_zeros */
  590.             status = ERRC;
  591.             goto out;
  592.         }
  593.     }
  594.     /* Interpreting the run requires scanning the */
  595.     /* previous ('reference') line. */
  596.     {    int prev_count = count;
  597.         byte prev_data;
  598.         int dlen;
  599.         static const byte count_bit[8] =
  600.             { 0x80, 1, 2, 4, 8, 0x10, 0x20, 0x40 };
  601.         byte *prev_q = prev_q01 + (q - q0);
  602.         int plen;
  603.  
  604.         if ( !(count & 7) )
  605.           prev_q++;    /* because of skip macros */
  606.         prev_data = prev_q[-1] ^ invert;
  607.         /* Find the b1 transition. */
  608.         if ( (prev_data & count_bit[prev_count & 7]) &&
  609.              (prev_count < init_count || invert != invert_white )
  610.            )
  611.         {    /* Look for changing white first. */
  612.             if_debug1('W', " data=0x%x", prev_data);
  613.             skip_black_pixels(prev_data, prev_q,
  614.                       prev_count, invert, plen);
  615.             if ( prev_count < end_count ) /* overshot */
  616.                 prev_count = end_count;
  617.             if_debug1('W', " b1 other=%d", prev_count);
  618.         }
  619.         if ( prev_count != end_count )
  620.         {    if_debug1('W', " data=0x%x", prev_data);
  621.             skip_white_pixels(prev_data, prev_q,
  622.                       prev_count, invert, plen);
  623.             if ( prev_count < end_count ) /* overshot */
  624.                 prev_count = end_count;
  625.             if_debug1('W', " b1 same=%d", prev_count);
  626.         }
  627.         /* b1 = prev_count; */
  628.         if ( rlen == run2_pass )
  629.         {    /* Pass mode.  Find b2. */
  630.             if ( prev_count != end_count )
  631.             {    if_debug1('W', " data=0x%x", prev_data);
  632.                 skip_black_pixels(prev_data, prev_q,
  633.                           prev_count, invert, plen);
  634.                 if ( prev_count < end_count ) /* overshot */
  635.                     prev_count = end_count;
  636.             }
  637.             /* b2 = prev_count; */
  638.             if_debug2('W', " b2=%d, pass %d\n",
  639.                   prev_count, count - prev_count);
  640.         }
  641.         else
  642.         {    /* Vertical coding. */
  643.             /* Remember that count counts *down*. */
  644.             prev_count += rlen - vertical_0;    /* a1 */
  645.             if_debug2('W', " vertical %d -> %d\n",
  646.                   rlen - vertical_0, prev_count);
  647.         }
  648.         /* Now either invert or skip from count */
  649.         /* to prev_count, and reset count. */
  650.         if ( invert == invert_white )
  651.         {    /* Skip data bits. */
  652.             q = endptr - (prev_count >> 3);
  653.             qbit = prev_count & 7;
  654.         }
  655.         else
  656.         {    /* Invert data bits. */
  657.             dlen = count - prev_count;
  658.             invert_data(dlen, black_byte, DO_NOTHING, idd);
  659.         }
  660.         count = prev_count;
  661.         if ( rlen >= 0 )    /* vertical mode */
  662.             invert = ~invert;    /* polarity changes */
  663.     }
  664.     goto top;
  665. out:    cfd_store_state();
  666.     ss->invert = invert;
  667.     return status;
  668. out0:    status = 0;
  669.     goto out;
  670.         /*
  671.          * We handle horizontal decoding here, so that we can
  672.          * branch back into it if we run out of input data.
  673.          */
  674.         /* White, then black. */
  675. hww:    get_run(cf_white_decode, cfd_white_initial_bits, rlen,
  676.         " white", outww);
  677.     if ( (count -= rlen) < end_count )
  678.       { status = ERRC;
  679.         goto out;
  680.       }
  681.     skip_data(rlen, hww);
  682.         /* Handle the second half of a white-black horizontal code. */
  683. hwb:    get_run(cf_black_decode, cfd_black_initial_bits, rlen,
  684.         " black", outwb);
  685.     if ( (count -= rlen) < end_count )
  686.       { status = ERRC;
  687.         goto out;
  688.       }
  689.     invert_data(rlen, black_byte, goto hwb, ihwb);
  690.     goto top;
  691. outww:    ss->run_color = -2;
  692.     goto out0;
  693. outwb:    ss->run_color = 1;
  694.     goto out0;
  695.         /* Black, then white. */
  696. hbb:    get_run(cf_black_decode, cfd_black_initial_bits, rlen,
  697.         " black", outbb);
  698.     if ( (count -= rlen) < end_count )
  699.       { status = ERRC;
  700.         goto out;
  701.       }
  702.     invert_data(rlen, black_byte, goto hbb, ihbb);
  703.         /* Handle the second half of a black-white horizontal code. */
  704. hbw:    get_run(cf_white_decode, cfd_white_initial_bits, rlen,
  705.         " white", outbw);
  706.     if ( (count -= rlen) < end_count )
  707.       { status = ERRC;
  708.         goto out;
  709.       }
  710.     skip_data(rlen, hbw);
  711.     goto top;
  712. outbb:    ss->run_color = 2;
  713.     goto out0;
  714. outbw:    ss->run_color = -1;
  715.     goto out0;
  716. }
  717.  
  718. #if 1    /****************/
  719. private int
  720. cf_decode_uncompressed(stream_CFD_state *ss, stream_cursor_read *pr)
  721. {    return ERRC;
  722. }
  723. #else    /****************/
  724.  
  725. /* Decode uncompressed data. */
  726. /* (Not tested: no sample data available!) */
  727. /****** DOESN'T CHECK FOR OVERFLOWING SCAN LINE ******/
  728. private int
  729. cf_decode_uncompressed(stream *s)
  730. {    cfd_declare_state;
  731.     const cfd_node *np;
  732.     int clen, rlen;
  733.     cfd_load_state();
  734.     while ( 1 )
  735.     {    ensure_bits(cfd_uncompressed_initial_bits, NOOUT);
  736.         np = &cf_uncompressed_decode[peek_bits(cfd_uncompressed_initial_bits)];
  737.         clen = np->code_length;
  738.         rlen = np->run_length;
  739.         if ( clen > cfd_uncompressed_initial_bits )
  740.         {    /* Must be an exit code. */
  741.             break;
  742.         }
  743.         if ( rlen == cfd_uncompressed_initial_bits )
  744.         {    /* Longest representable white run */
  745.             if_debug1('W', "[wu]%d\n", rlen);
  746.             if ( (qbit -= cfd_uncompressed_initial_bits) < 0 )
  747.                 qbit += 8, q++;
  748.         }
  749.         else
  750.         {    if_debug1('W', "[wu]%d+1\n", rlen);
  751.             if ( qbit -= rlen < 0 )
  752.                 qbit += 8, q++;
  753.             *q ^= 1 << qbit;
  754.         }
  755.         skip_bits(clen);
  756.     }
  757.     clen -= cfd_uncompressed_initial_bits;
  758.     skip_bits(cfd_uncompressed_initial_bits);
  759.     ensure_bits(clen, NOOUT);
  760.     np = &cf_uncompressed_decode[rlen + peek_var_bits(clen)];
  761.     rlen = np->run_length;
  762.     skip_bits(np->code_length);
  763.     if_debug1('w', "[wu]exit %d\n", rlen);
  764.     if ( rlen >= 0 )
  765.     {    /* Valid exit code, rlen = 2 * run length + next polarity */
  766.         if ( (qbit -= rlen >> 1) < 0 )
  767.             qbit += 8, q++;
  768.         rlen &= 1;
  769.     }
  770. out:        /******* WRONG ******/
  771.     cfd_store_state();
  772.     return rlen;
  773. }
  774.  
  775. #endif    /****************/
  776.  
  777. /* Stream template */
  778. const stream_template s_CFD_template =
  779. {    &st_CFD_state, s_CFD_init, s_CFD_process, 1, 1, s_CFD_release,
  780.     s_CFD_set_defaults
  781. };
  782.